@charset "utf-8";
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 400;
    font-size: 14px;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

table th, table td {
    padding: 5px;
}

fieldset, img {
    border: 0;
}

address, caption, cite, code, dfn, em, th, var {
    font-style: normal;
    font-weight: normal;
}

ol, ul {
    list-style: none;
}

q:before, q:after {
    content: '';
}

abbr, acronym {
    border: 0;
}

li {
    list-style-type: none;
}
b{
    font-weight: 400;
}
a {
    color: #333;
    text-decoration: none;
}

/*for ie f6n.net*/
a:focus {
    outline: none;
}

/*for ff f6n.net*/
a:hover {
    text-decoration: none;
}

input, button, textarea, select, optgroup, option {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
}

input, button, textarea, select {
    *font-size: 100%;
}

input, select {
    vertical-align: middle;
}

body {
    font: 14px/1.5 "Microsoft YaHei","微软雅黑","Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB",Arial,sans-serif;
    color: #333;
    min-width: 1200px;
    background: #fff;
	padding-top:60px;
}

select, input, button, textarea, button {
    font: 99% arial, helvetica, clean, sans-serif;
}

table {
    font-size: inherit;
    border-collapse: collapse;
}

pre, code, kbd, samp, tt {
    font-family: monospace;
    *font-size: 108%;
    line-height: 100%;
}

.tl {
    text-align: left;
}

.tc {
    text-align: center;
}

.tr {
    text-align: right;
}

.bc {
    margin-left: auto;
    margin-right: auto;
}

.fl {
    float: left;
    display: inline;
}

.fr {
    float: right;
    display: inline;
}

.zoom {
    zoom: 1
}

.hidden {
    visibility: hidden;
}
.hide{
    display: none;
}
.show{
    display: block;
}
.vam {
    vertical-align: middle;
}


.clearfix:after{
    display:block;
    clear:both;
    content:"";
    visibility:hidden;
    height:0;
}
.clearfix{
    zoom:1;
}

.clear{
    clear: both;
}

.cur {
    cursor: pointer
}

.upper {
    text-transform: uppercase;
}

/*单行文字超出隐藏显示省略号*/
.ell{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    display: block;
}
.container{
    margin-left: auto;
    margin-right: auto;
    width: 1200px;
}

header{
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #ccc;
}
.head_top{
    height: 60px;

}
.logo{
    padding-top: 3px;
}
.logo img{
    height: 54px;
	display: block;
}
.slogan{
    color:#fff;
    position: relative;
    font-weight: bold;
    font-size: 18px;
    padding: 5px 0 5px 20px;
    margin-left: 20px;
}
.slogan:before {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #1b854a;
    background: -moz-linear-gradient(top, #1b854a 0%, #ffffff 50%, #1b854a 100%);
    background: -webkit-linear-gradient(top, #1b854a 0%,#ffffff 50%,#1b854a 100%);
    background: linear-gradient(to bottom, #1b854a 0%,#ffffff 50%,#1b854a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1b854a', endColorstr='#1b854a',GradientType=0 );
}
.slogan span{
    display: block;
    font-size: 14px;
    font-weight: 400;
}

.tel {
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    background: url(../images/tel.png) no-repeat left center;
    background-size: 36px;
    padding: 15px 0 15px 45px;
    line-height: 30px;
	margin-top: 30px;
}
.serch{
    background: #fff;
    width: 300px;
    height: 40px;
    margin-top: 40px
}
.serch_input{
    border: none;
    line-height: 36px;
    padding: 0 10px;
    width: 234px;
    outline: none;
}
.serch .btn{
    font-size: 0;
    background: url(../images/serch.png) no-repeat center;
    background-size: 22px;
    width: 40px;
    height: 40px;
    border: none;
}
.switch{
    color: #fff;
    line-height: 120px;
    margin-left: 20px;
}

nav{
    background: #fff;
	padding-top: 0px;
}
nav li{
    float: left;
    width: 120px;
    text-align: center;
    font-size: 16px;
    position: relative;
}
nav li:nth-of-type(1){
    margin-left: 5px;
}
nav li .nav_a{
    display: block;
    line-height: 58px;
    height: 60px;
    position: relative;
    text-align: center;
    transition: all .5s;
    z-index: 100;
    background: #fff;
}
nav li:hover .nav_a {
    color: #1b854a;
}
nav li.cur .nav_a{
    color: #1b854a;
    font-weight: 700;
}
nav li .nav_a em {
    display: block;
    left: 50%;
    right: 50%;
    height: 2px;
    background: #1b854a;
    bottom: 0;
    position: absolute;
    transition: all .5s;
    visibility: hidden;
}
nav li:hover .nav_a em {
    left: 30%;
    right: 30%;
    visibility: visible;
}
nav li.cur .nav_a em {
    left: 30%;
    right: 30%;
    visibility: visible;
}
nav .menu{
    position: absolute;
    width: 100%;
    background: #1b854a;
    border-radius: 5px;
    transition: all .5s;
}
nav li:hover .menu{
    margin-top: 0px;
    z-index: 99;
}
nav .menu a{
    display: block;
    height: 0;
    color: #fff;
    transition: all .5s;
    font-size: 0;
}
nav li:hover .menu a{
    height: auto;
    line-height: 2;
    font-size: 16px;
}
nav .menu a:hover{
    background: #82a491;
}
nav li:hover .menu a:nth-of-type(1){
    margin-top: 20px;
}
nav li:hover .menu a:nth-last-of-type(1){
    margin-bottom: 20px;
}
/*nav li.switch a{
    line-height: 58px;
    height: 60px;
    background: #1b854a;
    color: #fff;
    display: block;
}*/

#banner {
    width: 100%;
    height: 800px;
    overflow: hidden;
}
#banner li {
    width: 100%;
    height: 100%;
}
#btn {
    display: inline;
    height: 18px;
    float: left;
    margin: -50px 0 0 -50px;
    left: 50%;
    position: absolute;
    z-index: 9;
}
#btn a {
    background: #fff;
    color: #36f;
    font: 700 11px "Arial";
    float: left;
    width: 10px;
    height: 10px;
    line-height: 10px;
    text-align: center;
    text-decoration: none;
    margin: 0 6px;
    font-size: 0;
    border: 2px solid #fff;
    border-radius: 50%;
    -webkit-transition: all .5s, opacity .5s;
    -moz-transition: all .5s, opacity .5s;
    transition: all .5s, opacity .5s;
    opacity: .6;
    -webkit-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
    -moz-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
    -o-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
}
#btn a.activeSlide {
    color: #fff;
    background: none;
    opacity: 1;
    background: #fff;
    width: 30px;
    border-radius: 17px;
}
#btn a:hover {
    color: #fff;
}

.title{
    text-align: center;
    padding: 50px 0 20px;
}
.title b{
    font-size:44px;
    line-height: 50px;
    font-weight: bold;
}
.title p{
    font-size:20px;
    line-height: 2;
}

.md1{
    /* background: url(../images/cp_bg.jpg) no-repeat center; */
   	background: #fff;
    /* background-size: cover; */
    padding-bottom: 50px;
}
.md1_menu{
    text-align: center;
}
.md1_menu a{
    display: inline-block;
    background: #ddd;
    color: #666;
    font-size: 16px;
    padding: 10px 30px;
    margin: 0 20px;
    /*border-radius: 10px;*/
}
.md1_menu a:hover{
    background: #1b854a;
    color: #fff;
    transition: all .5s;
}
.md1 ul{
    padding-top: 30px;
}
.md1 li {
    width: 380px;
    height: 350px;
    float: left;
    margin-bottom: 30px;
    margin-left: 30px;
    background: #ddd;
    position: relative;
}
.md1 li:nth-of-type(3n+1) {
    margin-left: 0;
}
.md1 li .pic{
    display: block;
    width: 380px;
    height: 300px;
    overflow: hidden;
    transition: all .5s .1s;
    border-bottom: none;
}
.md1 li img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    box-shadow: 0 0 20px #ccc;
    transition: all .5s .1s;
    border: 1px solid #ddd;
}
.md1 li p{
    width: 100%;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    bottom: 0;
    position: absolute;
    z-index: 10;
}
.md1 li em{
    display: block;
    left: 50%;
    right: 50%;
    height: 2px;
    background: #1b854a;
    bottom: 0;
    position: absolute;
    transition: all .5s .1s;
    visibility: hidden;
    z-index: 9;
}
.md1 li:hover em{
    left: 0;
    right: 0;
    visibility: visible;
}
.md1 li:hover .pic{
    box-shadow: 0 0 20px #888;
}
.md1 li:hover .pic img{
    transform:scale(1.1);
}
.more{
    display: block;
    width: 260px;
    height: 48px;
    font-size: 18px;
    line-height: 48px;
    border: 1px solid #333333;
    text-align: center;
    margin: 10px auto;
    transition: all .5s .1s;
}
.more:hover{
    background: #1b854a;
    color: #fff;
    border: 1px solid #1b854a;
}

.md2{
    width: 100%;
    background: url(../images/md2_bg.jpg) no-repeat center;
    background-size: cover;
    color:#fff;
    padding-bottom: 50px
}
.md2 ul{
    padding: 10px 0;
}
.md2 li{
    width: 320px;
    height: 270px;
    background: #fff;
    /*border-radius: 10px;*/
    float: left;
    padding: 30px 20px 0;
    margin: 0 20px;
    position: relative;
    transition: all .5s;
}
.md2 li:hover{
    box-shadow: 10px 10px 20px #3a3a3a;
    margin-top: -5px;
}
.md2 li .sj{
    width: 0;
    height: 0;
    border-width: 25px 0 0 45px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    bottom: -25px;
    right: 30px;
}
.md2 li:hover .ell{
    color: #1b854a;
}
.news_time{
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 8px;
}
.news_time span{
    font-size: 24px;
    color: #2e2e2e;
}
.news_time p{
    font-size: 16px;
    color: #676767;
}
.news_time a{
    font-size: 16px;
    color: #676767;
    margin-top: 30px;
    display: inline-block;
}
.news_cont{
    padding-top: 18px;
}
.news_cont a{
    display: block;
    font-size: 18px;
    line-height: 2;
}
.news_cont p{
    line-height: 2;
    color: #999;
}
.md2 .more{
    margin-top: 50px;
    color:#fff;
    border-color:#fff;
}

.md3{
    background: url(../images/cp_bg.jpg) no-repeat center;
    padding-bottom: 50px;
}
.md3_cont{
    position: relative;
}
.md3_cont .prev{
    width: 0;
    height: 300px;
    background: url("../images/prev.png") no-repeat left center;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
}
.md3_cont .next{
    width: 0;
    height: 300px;
    background: url("../images/next.png") no-repeat left center;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}
.md3_ul{
    width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
}
.md3_ul li{
    float: left;
    width: 380px;
    height: 390px;
    position: relative;
    margin: 0 12px;
    background: #fff;
    /*border-radius: 10px;*/
    box-shadow: 0 3px 5px 3px rgba(0,0,0,0.05);
    transition: all .5s;
}
.md3_ul li:hover{
    box-shadow: 0 3px 5px 3px rgba(0,0,0,0.15);
}
.md3_ul li .pic{
    width: 100%;
    height: 300px;
    display: block;
    overflow: hidden;
}
.md3_ul li .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}
.md3_ul li:hover .pic img{
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -ms-transform:scale(1.1);
    transform:scale(1.1);
}
.md3_ul li .ell{
    font-size: 20px;
    width: 260px;
    /* margin: 0 auto; */
    padding: 20px 0 15px;
	margin-left: 30px;
}
.md3_ul li:hover .ell{
    color: #1b854a;
}
.md3_ul li p{
    width: 320px;
    margin: 0 auto;
    font-size: 16px;
    color: #888;
    line-height: 2;
    text-indent: 2em;
}
.md3_ul li em{
    width: 36px;
    height: 36px;
    display: block;
    background: url(../images/case_more.png) no-repeat center;
    margin-top: -46px;
	margin-left: 300px;
    transition: all .5s;
}
.md3_ul li:hover em{
    margin-left: 320px;
}

.md4{
    padding: 50px 0;
}
.md4_cont{
    width: 1060px;
    margin: 0 auto;
    height: 510px;
    background: url(../images/md4_bg.jpg) no-repeat center;
    padding: 0 70px;
}
.md4left{width:490px;float:left;font-size:20px;font-family:黑体;position:relative;}
.md4left span{line-height:2;}
.md4left .submit{width:120px;height:120px;background:url(../images/submit.gif) no-repeat;border:none;position:absolute;right:0;bottom:0;}
.md4div1{overflow:hidden;}
.md4div2{padding-top:20px;height: 160px}
.md4div1 input{width:229px;height:40px;border:1px solid #bfbfbf;font-size:16px;}
.md4div2 textarea{width:340px;height:118px;border:1px solid #bfbfbf;font-size:16px;}
.md4div1left{width:232px;float:left;}
.md4div1right{width:232px;float:right;}
.md4right{width:520px;float:right;}
.md4right p{padding-left:35px;font-size:18px;height:30px;margin-bottom:20px;line-height:30px;background:url(../images/call.gif) no-repeat left center;}
.md4left .submit {
    width: 120px;
    height: 120px;
    background: url(../images/submit.gif) no-repeat;
    border: none;
    position: absolute;
    right: 0;
    bottom: 0;
}
.md5{
    background: url(../images/md5_bg.jpg) no-repeat center top;
    padding-bottom: 50px;
	padding-top:270px;
}
.md5_cont{
    width: 960px;
    margin: 0 auto;
    line-height: 2;
    font-size: 16px;
    text-indent: 2em;
}
.md5 .more{
    margin-top: 30px;
}

.md6{
	padding-bottom: 50px;
}
.md6_cont video{
	width:100%;
}

footer{
    width: 100%;
    background: #f4f4f4;
    color: #666;
}
footer a{
    color: #666;
}
.foot{
    padding-top: 50px;
    padding-bottom: 50px;
}
.foot_1{
    font-size: 19px;
    letter-spacing: 2px;
    width: 300px;
}
.foot_2{
    padding-left: 80px;
    line-height: 2;
    width: 100px;
}
.foot_2 b{
    display: block;
    font-weight: bold;
    font-size: 18px;
}
.foot_2 a{
    display: block;
}
.foot_3{
    width: 400px;
}
.foot_3a input{
    display: block;
    float: left;
    background: #fff;
    /*border-radius: 5px;*/
    border: 1px solid #fff;
    height: 36px;
    width: 196px;
    color: #333;
    margin-left: 8px;
    font-size: 16px;
    padding: 0 10px;
    box-sizing: border-box;
    outline: none;
}
.foot_3a input:nth-of-type(1){
    margin-left: 0;
}
.foot_3 textarea{
    display: block;
    width: 100%;
    /*border-radius: 5px;*/
    background: #fff;
    border: 1px solid #fff;
    font-size: 16px;
    line-height: 36px;
    color: #333;
    margin-top: 10px;
    padding: 5px 10px;
    box-sizing: border-box;
    outline: none;
	height: 90px;
}
.foot_3 .submit{
    display: block;
    margin-top: 10px;
    width: 80px;
    height: 30px;
    background: #fff;
    border: none;
    /*border-radius: 3px;*/
}
.foot_3 input::-webkit-input-placeholder { /* WebKit browsers */
  color: #ccc;
}
.foot_3 input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #ccc;
}
.foot_3 input::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #ccc;
}
.foot_3 input:-ms-input-placeholder { /* Internet Explorer 10+ */
  color: #ccc;
}
.foot_3 textarea::-webkit-input-placeholder { /* WebKit browsers */
  color: #ccc;
}
.foot_3 textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #ccc;
}
.foot_3 textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #ccc;
}
.foot_3 textarea:-ms-input-placeholder { /* Internet Explorer 10+ */
  color: #ccc;
}
.foot_4{
	font-size: 16px;
	padding-left: 80px;
	line-height:2;
	width: 320px;
}
.foot_4 b{
	font-size: 20px;
	color: #333;
}

.foot_txt{
    text-align: center;
    line-height: 50px;
    border-top: 1px solid #82a491;
}
/*.foot{
    padding: 50px 0;
}
.foot_title{
    font-size: 16px;
    font-weight: bold;
}
.foot_1{
    width: 280px;
    font-size: 14px;
}
.foot_1 a{
    display: block;
    float: left;
    width: 140px;
    line-height: 1;
    margin-top: 16px;
}
.foot_2{
    width: 268px;
    margin-left: 90px;
    padding-left: 30px;
    border-left: 1px solid #999999;
    font-size: 14px;

}
.foot_2_img{
    width: 100px;
    margin-right: 40px;
    margin-top: 20px;
}
.foot_2_img img{
    width: 100px;
    height: 100px;
    display: block;
}
.foot_2_img p{
    line-height: 50px;
    font-size: 16px;
    text-align: center;
}
.foot_3{
    width: 320px;
    margin-left: 140px;
    padding-left: 30px;
    border-left: 1px solid #999999;
}
.foot_3 p{
    line-height: 1;
    margin-top: 16px;
}
.foot_txt{
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #004a5b;
}*/


.sub_main {
    width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
}

.main_left{
    width: 240px;
}
.ml_tit{
    background: #1b854a;
    height: 80px;
}
.ml_tit h2 {
    height: 75px;
    font-size: 24px;
    font-weight: normal;
    line-height: 75px;
    color: #fff;
    border-bottom: 1px solid #fff;
    text-align: center;
}
.ml_nav h3 {
    height: 50px;
    line-height: 50px;
    background: #ececeb;
    margin-bottom: 2px;
    overflow: hidden;
    position: relative;
}
.ml_nav h3:hover{
    background: #1b854a;
}
.ml_nav h3:hover a{
    color: #fff;
}
.ml_nav h3.cur{
    background: #1b854a;
}
.ml_nav h3.cur a{
    color: #fff;
}
.ml_nav h3:after {
    content: "";
    width: 8px;
    height: 8px;
    border: 2px solid #b8b8b8;
    border-style: solid solid none none;
    position: absolute;
    top: 50%;
    right: 32px;
    margin-top: -4px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.ml_nav h3 a {
    display: block;
    font-size: 18px;
    font-weight: normal;
    margin-right: 40px;
    margin-left: 38px;
    color: #333;
    overflow: hidden;
}
.ml_nav dl {
    padding: 2px 0 4px;
}
.ml_nav dt {
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    padding-left: 54px;
    padding-right: 40px;
    margin-bottom: 1px;
    background: #ececec;
    position: relative;
    overflow: hidden;
}
.ml_nav dt:after {
    content: "";
    width: 8px;
    height: 8px;
    border: 2px solid #b8b8b8;
    border-style: solid solid none none;
    position: absolute;
    top: 50%;
    right: 44px;
    margin-top: -4px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.ml_nav dt a{
    color: #666;
}
.ml_nav dt:hover a{
    color: #1b854a;
}
.ml_nav dt:hover:after{
    border-color: #1b854a;
}
.ml_nav dt.cur a{
    color: #1b854a;
}
.ml_nav dt.cur:after{
    border-color: #1b854a;
}










.main_right {
    width: 930px;
}

.m_r_top {
    /*width: 846px;*/
    /*padding: 0 15px;*/
    height: 46px;
    line-height: 46px;
    /*border: 2px solid #1b854a;*/
    /*border-radius: 20px;*/
    color: #1b854a;
}

.m_r_top .typename {
    font-size: 16px;
    font-weight: bold;
    border-left: 5px solid #fb7a05;
    padding-left: 8px;
    height: 24px;
    line-height: 24px;
    margin-top: 11px;
}

.m_r_top .posit {
    font-size: 16px;
    background: url("../images/posit.png") no-repeat 0 center;
    text-indent: 32px;
}

.posit a {
    color: #1b854a;
}

.m_r_cont {
    width: 100%;
    min-height: 555px;
    padding-bottom: 50px;
}

.img_ul li {
    width: 290px;
    float: left;
    margin-right: 30px;
}
.img_ul li:nth-of-type(3n+3){
    margin-right: 0;
}

.img_ul li .pic {
    width: 288px;
    height: 288px;
    display: flex;
    /* justify-content: center;
    align-items: center; */
    overflow: hidden;
    /*border-radius: 10px;*/
    /* box-shadow: 0 0 5px #ccc; */
    border: 1px solid #ccc;
}
.img_ul li:hover .pic{
    border: 1px solid #1b854a;
}
.img_ul li img {
    width: 288px;
    height: 288px;
    vertical-align: middle;
    object-fit: cover;
}

.img_ul li .img_name {
    text-align: center;
    font-size: 16px;
    color: #0e0e0e;
    line-height: 60px;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
.md1_ul ul{
    padding-top: 30px;
}
.md1_ul li {
    width: 380px;
    height: 350px;
    float: left;
    margin-bottom: 30px;
    margin-left: 30px;
    background: #ddd;
    position: relative;
}
.md1_ul li:nth-of-type(3n+1) {
    margin-left: 0;
}
.md1_ul li .pic{
    display: block;
    width: 380px;
    height: 300px;
    overflow: hidden;
    transition: all .5s .1s;
    border-bottom: none;
}
.md1_ul li img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    box-shadow: 0 0 20px #ccc;
    transition: all .5s .1s;
    border: 1px solid #ddd;
}
.md1_ul li p{
    width: 100%;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    bottom: 0;
    position: absolute;
    z-index: 10;
}
.md1_ul li em{
    display: block;
    left: 50%;
    right: 50%;
    height: 2px;
    background: #1b854a;
    bottom: 0;
    position: absolute;
    transition: all .5s .1s;
    visibility: hidden;
    z-index: 9;
}
.md1_ul li:hover em{
    left: 0;
    right: 0;
    visibility: visible;
}
.md1_ul li:hover .pic{
    box-shadow: 0 0 20px #888;
}
.md1_ul li:hover .pic img{
    transform:scale(1.1);
}

.page {
    width: 100%;
    height: 32px;
    padding: 20px 0;
    text-align: center;
}

.page li {
    display: inline-block;
    font-size: 16px;
    padding: 10px 12px;
    line-height: 1;
    border: 1px solid #999999;
    /*border-radius: 10px;*/
    margin: 0 1px;
}

.page li.active {
    background: #1b854a;
    border: 1px solid #1b854a;
    color: #fff;
}
.sub_menu{
	text-align:right;
}
.sub_menu a{
	height: 16px;
    line-height: 16px;
    display: inline-block;
    padding: 8px 20px;
    margin-left: 10px;
    transition: all .3s ease-out 0s;
    position: relative;
    color: #777;
}
.sub_menu a::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 1px;
    margin-right: -12px;
    margin-top: 1px;
    background-color: #DBDBDB;
    top: 50%;
    right: 0;
}
.sub_menu a:hover{
	background:#333;
	color:#fff;
}
.sub_menu a.cur{
	background:#333;
	color:#fff;
}

.news_ul {
    width: 100%;
    margin: 0 auto;
}

.news_ul li {
    border-bottom: 1px dashed #ccc;
    color: #666666;
    padding: 20px 0;
}

.news_ul_fl {
    width: 90px;
    text-align: center;
    line-height: 1;
    font-size: 18px;
    background: #999999;
    color: #fff;
    /*border-radius: 10px;*/
    padding: 10px 0;
    margin-left: 10px;
}

.news_ul_fl b {
    font-size: 36px;
    font-weight: 400;
}

.news_ul_fr {
    width: 745px;
    margin-right: 10px;
}

.news_ul_fr a {
    font-size: 16px;
    color: #333333;
    font-weight: bold;
    line-height: 2;
}

.news_ul li:hover .news_ul_fl {
    background: #1b854a;

}

.news_ul li:hover .news_ul_fr {
    color: #1b854a;
}

.news_ul li:hover a {
    color: #1b854a;
}
.news2_ul li:nth-of-type(1){
    margin-top: 0;
}
.news2_ul li{
    /*width: 800px;*/
    height: 130px;
    padding: 20px;
    margin: 20px auto 0;
    box-shadow: 0 0 10px #ccc;
    /*border-radius: 8px*/
}
.news2_ul li:hover{
    box-shadow: 0 0 15px #aaa;
}
.news2_ul li .pic{
    width: 180px;
    height: 130px;
}
.news2_ul li .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news2_ul li .txt{
    width: 690px;
    padding-top: 8px;
}
.news2_ul li .ell{
    font-size: 16px;
    font-weight: bold;
    line-height: 2;
}
.news2_ul li:hover .ell{
    color: #1b854a;
}
.news2_ul li p{
    color: #888;
    text-indent: 2em;
    padding: 8px 0 10px;
}







.cont_news_div{
    padding: 20px;
    line-height: 1.8;
    font-size: 16px;
    min-height: 600px;
}
#biaoti1 {
    font-size: 22px;
    color: #333;
    text-align: center;
    line-height: 50px;
    border-bottom: 1px dashed #ccc;
}

#zls {
    font-size: 14px;
    text-align: center;
    line-height: 50px;
    color:#999;
}

#subcontent {
    line-height: 2;
    min-height: 500px;
}

#subcontent img {
    margin: 0 auto;
    display: block;
    max-width: 704px;
}

#xiangguan {
    line-height: 24px;
    margin-top: 30px;
    font-size: 12px;
    margin-left: 50px;
    border-bottom: 1px dashed #ccc;
}

#xiangguan p {
    line-height: 30px;
}

#xiangguan a {
    color: #000;
}

#fanpian {
    margin: 10px 0 0 150px;
    font-size: 16px;
    line-height: 30px;
}

#fanpian a {
    color: #000;
}

#fanpian a:hover {
    color: red;
}

.tj_title{
    width: 846px;
    padding: 0 15px;
    height: 46px;
    line-height: 46px;
    border: 2px solid #1b854a;
    border-radius: 20px;
    color: #1b854a;
    margin-top:10px;
    font-size:16px;
    background: url("../images/tuijian.png") no-repeat 20px center;
    text-indent: 40px;
    font-weight: bold;
}
.tj_news_ul{
    margin-top:10px;
    width: 846px;
    border: 2px solid #1b854a;
    border-radius: 20px;
    padding: 5px 15px 15px;
}
.tj_news_ul li{
    font-size: 16px;
    border-bottom: 1px dashed #ccc;
    height:50px;
    line-height: 50px;
}
.tj_news_ul li span{
    float:right;
}
.tj_news_ul li a:hover{
    color:#1b854a;
}

.tj_img_ul{
    margin-top:10px;
    width: 876px;
    border: 2px solid #1b854a;
    border-radius: 20px;
    padding-top:15px;
}
.tj_img_ul li {
    width: 200px;
    float: left;
    margin-left: 15px;
}

.tj_img_ul li .pic {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 5px #ccc;
}

.tj_img_ul li img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.tj_img_ul li .img_name {
    text-align: center;
    font-size: 14px;
    color: #0e0e0e;
    line-height: 50px;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}

.cont_img_div{
    padding:20px;
    min-height: 600px;
}
.cont_img_d1_l{
    width:400px;
    height:400px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    box-shadow: 0 0 5px #ccc;
}
.cont_img_d1_l img {
    width:100%;
    height:100%;
    object-fit:cover;
}
.cont_img_d1_r{
    width:400px;
    height: 400px;
    font-size:16px;
    line-height: 2.5;
    font-weight: bold;
    color: #333;
    display: table-cell;
    vertical-align: middle;
    padding-left:36px;
}
.cont_img_d2_tit{
    font-size:16px;
    color:#1b854a;
    font-weight:bold;
    height:36px;
    border-bottom:2px solid #1b854a;
    margin-top:20px;
}
.cont_img_d2_tit span{
    line-height: 30px;
    border-left:5px solid #1b854a;
    padding-left:6px;
    margin-left:10px;
}
.cont_img_d2_cont{
    padding:10px;
    line-height: 1.8;
}
.cont_img_d2_cont img{
    max-width:100%;
}

.sub_banner{
    width:100%;
    height:300px;
    background:url(../images/sub_banner.jpg) no-repeat center;
}
.about_cont {
    padding: 5px;
    line-height: 1.8;
    font-size: 16px;
    min-height: 526px;
}
.about_cont img{
    max-width:100%;
}

.sub_pro{
    width: 1100px;
    margin: 0 auto;
    padding:30px 0;
}
.pro_posit{
    padding-left: 30px;
    background: url(../images/posit.png) no-repeat left center;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
    line-height: 60px;
    margin-bottom: 30px;
}
.pro_posit_b{
    margin-bottom: 30px;
    margin-top: 20px;
}
.pro_posit_a{
	background:#f8f8f8;
	line-height:50px;
	font-size:14px;
}
.pro_title{
    font-size: 24px;
    line-height: 2;
    padding-bottom: 15px;
}
.pro_d1 .pic{
    width: 550px;
    height: 720px;
    border: 1px solid #999;
}
.pro_d1 .pic img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.pro_d1 .txt{
    width: 600px;
    height: 520px;
    line-height: 2;
    font-size: 16px;
    overflow:hidden;
    padding-right: 10px;
}
.pro_d1 .txt::-webkit-scrollbar {
             width:6px;
        }
        
.pro_d1 .txt::-webkit-scrollbar-track {
            background-color: #eee;
        }
        
.pro_d1 .txt::-webkit-scrollbar-thumb {
            background: #1b854a;
             border-radius: 3px;
        }
.pro_d1 .txt .p{
    display: table-cell;
    vertical-align: middle;
}
.pro_d2{
    padding-top:30px;
    min-height: 500px;
    padding-bottom: 30px;
}
.pro_d2 .tab{
    text-align: center;
    font-size: 18px;
}
.pro_d2 .tab{
    border-bottom: 4px solid #ccc;
    height: 60px
}
.pro_d2 .tab span{
    display: inline-block;
    margin: 0 20px;
    cursor: pointer;
}
.pro_d2 .tab span.cur{
    border-bottom: 4px solid #1b854a;
    line-height: 60px;
}

.pro_d2 b{
    font-size: 28px;
    text-align: center;
    display: block;
    padding: 40px 0 20px;
}
.info-table {
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    width: 950px;
    font-size: 16px;
    margin: 0 auto
}
.info-table tbody tr:nth-child(odd) {
    background-color: #f0f0f0;
}
.info-table tbody tr{
    border: 1px solid #ccc;
    line-height: 70px;
}
.info-table--label{
    width: 28%;
    padding-left: 40px;
    color: #888;
}
.download{
    width: 900px;
    margin: 0 auto
}
.download a{
    color: #1b854a;
    font-size: 16px;
        display: list-item;
    text-align: -webkit-match-parent;
}
.cont_pic{
    font-size: 16px;
    line-height: 2;
}
.cont_pic img{
    max-width: 100%;
}

.contact_1{
    background: #fff;
    /* padding-top: 30px; */
    padding-bottom: 50px;
}
.contact_1 .map{
    width: 100%;
    height: 600px;
    background: #f3f3f3;
    margin-bottom: 40px;
}
.contact_1 li:nth-last-of-type(1){
    border-right: 2px solid #dbdbdb;
}
.contact_1 li{
    float: left;
    width: 25%;
    box-sizing: border-box;
    text-align: center;
    height: 300px;
    border-bottom: 2px solid #dbdbdb;
    border-top: 2px solid #dbdbdb;
    border-left: 2px solid #dbdbdb;
    padding-top: 25px;
    font-size: 18px;
    color: #666666;
}
.contact_1 li span{
    display: block;
    font-size: 24px;
    line-height: 2;
}

.about{
    /* padding-top: 30px;  */
}
.about .pic img{
	width: 540px;
}
.about .txt{
    width: 620px;
    font-size: 16px;
    line-height: 2;
    /* padding-top: 90px; */
}
.about_title{
    font-size: 28px;
    color: #1b854a;
    line-height: 70px;
    margin-bottom: 20px;
}
.about_title i{
    display: block;
    width: 50px;
    height: 4px;
    background: #75bd44;
}

.news3_ul li{
    width: 320px;
    height: 270px;
    background: #fff;
    /*border-radius: 10px;*/
    float: left;
    padding: 30px 20px 0;
    margin: 0 20px 30px;
    position: relative;
    transition: all .5s;
    box-shadow: 0 0 5px #ccc;
}
.news3_ul li:hover{
    box-shadow: 0 0 20px #3a3a3a;
}
.news3_ul li:hover .ell{
    color: #1b854a;
}


.search_time{
    text-align: center;
    font-size: 18px;
    line-height: 3;
    padding-bottom: 10px;
}
.color_f00{
    color: #f00;
}

.contact{
	position:relative;
	width: 100%;
	height: 520px;
	background: url(../images/topBg.jpg) no-repeat center;
	background-size: cover;
}
.contact_banner img{
	display: block;
	width: 100%;
}
.contact .contact_title{
	position:absolute;
	top:160px;
	font-size:40px;
	color: #fff;
	text-align:center;
	line-height:1.5;
	width:100%;
}

.contact_cont{
	width: 1200px;
	height: 400px;
	background: #fff;
	position: absolute;
	top: 300px;
	left: 50%;
	margin-left: -600px;
	z-index: 200;
}

.contact_a li{
	width: 50%;
	float: left;
	box-sizing: border-box;
	padding: 80px 0 80px 80px;
	border-bottom: 2px solid #ccc;
	font-size: 16px;
}
.contact_a li:hover{
	border-bottom: 2px solid #ff0000;
}
.contact_a li img{
	display: block;
	width: 30px;
	height: 30px;
}
.contact_a li b{
	display: block;
	font-size: 30px;
	font-weight: bold;
}
.contact_b li{
	font-size: 18px;
	padding: 50px 0 50px 130px;
}
.contact_b li:nth-of-type(1){
	background: url(../images/dz.png) no-repeat 80px center;
	background-size: 50px;
}




